home *** CD-ROM | disk | FTP | other *** search
- @Echo off
- Echo off
- CLS
- rem This is an example of a BAT to use in one of Intellicomm's external
- rem protocol entries. It is set up for a Zmodem receive using the DSZ
- rem external protocol program, by Chuck Forsberg (Shareware, available on
- rem most BBS's). This is an EXAMPLE ONLY and may or may not work with your
- rem modem. If you have problems please refer to the DSZ documentation.
- rem
- rem TIP: If you prefer using DSZ Zmodem rather than Intellicomm's internal
- rem Zmodem, you should consider changing the 'Auto-Zmodem Protocol' to this
- rem external protocol. This way Icom will automatically call DSZ-Zmodem
- rem rather than using its internal Zmodem when an auto-Zmodem download is
- rem detected. See the Intellicomm Main Setup/File Transfer Settings screen
- rem and select the Auto-Zmodem protocol item if you don't understand. You
- rem may tell Icom to run ANY protocol when an auto-Zmodem download is
- rem detected.
- rem
- rem Parameters Passed from Intellicomm:
- rem
- rem %1=baud %2=port %3=-CDSlog %4=fspec [or @d:list if File Picker was used]
- rem
- rem The -CDS switch points to Intellicomm's Call Data Standard format
- rem Usage Log, if the Log is open when this BAT is called. Any program
- rem that follows the CDS standard can stamp Icom's Log to keep your records
- rem in the same place, and in the same format. In this way Log files can
- rem be analyzed by Usage Log analyzers that understand the CDS standard, and
- rem external file transfers will be accounted for in the report.
- rem The -CDS switch is specified in the Call Data Standard, so any program
- rem that follows the standard will be expecting it on its own command
- rem line. Just use %3 to pass it.
- rem
- rem If DSZ is not on your DOS PATH you must precede the DSZ command with
- rem the proper pathname. E.g. C:\UTIL\DSZ port ...
- rem Note that Intellicomm will perform a CHDIR to the proper Download
- rem Directory (or Message Directory on mail transfers) before calling this
- rem .BAT, so you needn't specify any CD's or directories here.
- rem
- DSZ port %2 speed %1 ha on rz -mrr
-